home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyo (Python 2.5)
-
- __all__ = [
- 'MIMEImage']
- import imghdr
- from email import encoders
- from email.mime.nonmultipart import MIMENonMultipart
-
- class MIMEImage(MIMENonMultipart):
-
- def __init__(self, _imagedata, _subtype = None, _encoder = encoders.encode_base64, **_params):
- if _subtype is None:
- _subtype = imghdr.what(None, _imagedata)
-
- if _subtype is None:
- raise TypeError('Could not guess image MIME subtype')
-
- MIMENonMultipart.__init__(self, 'image', _subtype, **_params)
- self.set_payload(_imagedata)
- _encoder(self)
-
-
-